home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.42 / includes3v1 / includes3v1.lha / Prefs / ScreenMode.i < prev    next >
Text File  |  1994-12-04  |  457b  |  28 lines

  1.   {     File format for screen mode preferences }
  2.  
  3.  
  4. {$I "Include:Libraries/IffParse.i"}
  5.  
  6. const
  7.  ID_SCRM = 1396920909;
  8.  
  9.  
  10. Type
  11.  ScreenModePrefs = Record
  12.     smp_Reserved        : Array[0..3] of Integer;
  13.     smp_DisplayID       : Integer;
  14.     smp_Width,
  15.     smp_Height,
  16.     smp_Depth,
  17.     smp_Control         : Word;
  18.  end;
  19.  ScreenModePrefsPtr = ^ScreenModePrefsPtr;
  20.  
  21. const
  22. { flags for ScreenModePrefs.smp_Control }
  23.  SMB_AUTOSCROLL = 1;
  24.  
  25.  SMF_AUTOSCROLL = 1;
  26.  
  27.  
  28.